home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Over 1,000 Windows 95 Programs
/
Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso
/
0068
/
order.bat
< prev
next >
Wrap
DOS Batch File
|
1997-03-23
|
1KB
|
24 lines
echo off
cls
echo ┌────────────────────────────────────────────────────────────────────────┐
echo │ This batch file will print a one page order form for Elfring Soft Font │
echo │ products when you are ready. To print the form, press any key now. │
echo │ │
echo │ This batch file assumes your printer is attached to LPT1:. If your │
echo │ printer is attached to a different port, press Ctrl-C now to stop this │
echo │ batch file, and then run it again, passing the printer port you do use.│
echo │ │
echo │ ORDER LPT2: or ORDER COM1: │
echo │ │
echo │ If you do *not* want to print this order form press the Ctrl-C key now │
echo │ to stop this batch file. │
echo └────────────────────────────────────────────────────────────────────────┘
pause
if "%1"=="" goto DO2
copy order.txt %1
goto theend
:DO2
copy order.txt LPT1:
:THEEND